Symbols are alighed with previews for easy finding and copying.
Preview:
Symbols:
Applied rationality for a coding agent. Defensive epistemology: minimize false beliefs, catch errors early, avoid compounding mistakes.
This is correct for code, where:
Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
| // ==UserScript== | |
| // @name IITM Dashboard Session Restorer | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Restores session cookies for IITM Student Dashboard on load | |
| // @author Sujatro-Chakraborty | |
| // @match https://app.onlinedegree.iitm.ac.in/* | |
| // @run-at document-start | |
| // @grant none | |
| // @updateURL https://gist.githubusercontent.com/Better-Than-You/gist_id/raw/IITM_Dashboard_Session_Restorer.user.js |
| package org.example; | |
| import static java.lang.reflect.AccessFlag.PUBLIC; | |
| import static java.lang.reflect.AccessFlag.STATIC; | |
| import static java.util.Objects.requireNonNull; | |
| import static java.util.function.Function.identity; | |
| import static org.example.TyEq.refl; | |
| import static org.example.TypeClass.Witness.Overlap.OVERLAPPABLE; | |
| import static org.example.TypeClass.Witness.Overlap.OVERLAPPING; | |
| import static org.example.TypeClasses.witness; |
You can use ssacli (smart storage administrator command line interface) tool to manage any of supported HP Smart Array Controllers in your Proxmox host without need to reboot your server to access Smart Storage Administrator in BIOS. That means no host downtime when managing your storage.
CLI is not as convenient as GUI interface provided by BIOS or desktop utilities, but still allows you to fully manage your controller, physical disks and logical drives on the fly with no Proxmox host downtime.
ssacli replaces older hpssacli, but shares the same syntax and adds support for newer servers and controllers.
| /** | |
| * Read all bytes from a file. | |
| * | |
| * Taken from http://codereview.stackexchange.com/questions/22901/reading-all-bytes-from-a-file | |
| * | |
| * Alternate form: static void ReadAllBytes(char const* filename, std::vector<char>& result) | |
| */ | |
| #include <vector> | |
| #include <fstream> |
| diff --git a/apps/desktop/packages/main/adSize.ts b/apps/desktop/packages/main/adSize.ts | |
| index 8ab38784..bdf2777a 100644 | |
| --- a/apps/desktop/packages/main/adSize.ts | |
| +++ b/apps/desktop/packages/main/adSize.ts | |
| @@ -17,8 +17,8 @@ export default function getAdSize(display?: Display) { | |
| adSize: { | |
| useFallbackAd, | |
| useVertical: true, | |
| - width: 160, | |
| - height: 600 |
| #!/bin/zsh --no-rcs | |
| # https://github.com/tailscale/tailscale/issues/18101 | |
| # https://gist.github.com/luckman212/356dfc72396b838a055ec10d315b042b | |
| zmodload zsh/datetime | |
| #get a random peer | |
| ts_json=$(tailscale status --json) | |
| all_peers=$(jq '.Peer | to_entries | map(select(.value.DNSName!="")) | map(.value.DNSName)' <<< "$ts_json") |
| export interface ScheduleHandlerContext<E = Env> { | |
| /** | |
| * The scheduled event controller providing details about the cron trigger. | |
| */ | |
| controller: ScheduledController; | |
| /** | |
| * The environment bindings available to the worker. | |
| */ | |
| env: E; | |
| /** |